Guild Wars Forums - GW Guru
 
 

Go Back   Guild Wars Forums - GW Guru > The Inner Circle > Sardelac Sanitarium

Notices

Poll: Should players have the option to protect their accounts more?
Poll Options
Should players have the option to protect their accounts more?

Reply
 
Thread Tools Display Modes
Old Jan 26, 2008, 10:00 AM // 10:00   #1
Ascalonian Squire
 
Join Date: Aug 2007
Advertisement

Disable Ads
Default Character Locked = Undeletable. Then... what would you do? [Pics included]

How many of you would like a feature that allows to "lock" a character and prevent it from deletion?

I'm not talking about accidental deletion, since you need to input your char name to delete it.
This kind of lock would be meant to prevent your character from being deleted by malicious people that in one way or the other get to know username and password of your account.

The lock is time based. For a set period of time that character can't be deleted from the account.
That period can be "renewed" before expiration.

Here are some screens on how this would appear in the character selection screen:





When you click on the "Lock Character" button, a popup comes out telling you: "WARNING! If you proceed with this option your character will become locked. This will prevent deletion for the next 6 months, so you won't be able to change your mind. You are allowed to renew the lock in the 15 days before expiration of the current one. Click on "Yes" if you are sure, click on "No" if you don't want to lock your character."





Then the character is locked. On the window appear the remaining lock days, and the buttons "Lock" and "Delete" are greyed out. (Obviously the lock isn't just a greyed out button for 6 months, it needs a server side check before deletion anyway).

___________________________________

On the technical side here is how I think it could be done.
Option (1): easier codewise, puts a bit of server stress.

The database records of characters need to get a new field: "Days_before_unlock".
This field is set by default to 0, which means that the character can be deleted at any time. (So, if this was to be implemented all current characters, as well as newly created characters would have a "Days_before_unlock" = 0).
When a player clicks on "Lock Character", the server sets "Days_before_unlock" to 180, and each day that counter is decremented.
When the server receives a "Delete Character" command, it checks against the "Days_before_unlock":

If Days_before_unlock!=0 then {
message: "Sorry, this character can't be deleted";
exit;
};
Else Delete();



If option (1) puts too much stress on the db servers, updating each day a single field for each character, here is
Option (2): a little bit more complex codewise, less server stress.

The database records of characters need to get a new field: "Date_of_lock".
This field is set by default to 0, which means that the character can be deleted at any time. (So, if this was to be implemented all current characters, as well as newly created characters would have a "Date_of_lock" = 0).
When a player clicks on "Lock Character", the server writes the current date in "Date_of_lock" (the same way as it does for character creation date, for example).
This way the servers don't need to update the field each day.
The code should then check against time spans, so it is a little bit more complicated than just check if a field is empty or not.

If ( Current_date - Date_of_lock < 180days) then {
message: "Sorry, this character can't be deleted";
exit;
};
Else Delete();


On the bandwidth usage, it is just a few bytes to tell the client if a given charachter is locked or not, and how many days are needed before unlock. (Maybe just 1 more byte per character is needed when the client at login retrieves character info from the server)

___________________________________

Pros:
1) Gives Anet some breath (people bitching to Anet to get their char restored.).
2) Players would be able to "save" their precious characters.

(I myself would feel bad if my mesmer would be deleted... I created that char 19 months ago and played the nice amount of ~350hrs... I can't imagine how it would be, for those fellow players who have invested 2.000+ hrs on a single char, only to find it deleted)


Cons:
1) If you change your mind you can't go back for 6 months, so it is a feature that must be used with care.
2) If someone steals a user/pass and enters an account could vandalize it by locking the remaining unlocked characters (but then, I think that many would prefer to have all their character locked for 6 months instead of losing their main).

___________________________________

The coding part just speculation, I'm sure that Anet developers can do much better than those 2 crappy coding ideas I had (they are there just to show that the concept is quite simple).
What I ask you is:
How many of you find useful a feature like that?
Would you use it?
Would you ask Anet to implement this?
Do I need to buy me a stock of fire extinguishers?
vodka is offline   Reply With Quote
Old Jan 26, 2008, 10:04 AM // 10:04   #2
Academy Page
 
Join Date: Mar 2006
Location: Australia
Guild: Templars of the Apocalypse [Zoso]
Profession: N/
Default

Yes I'd use it.
It would be handy in the case of account thefts.
And It would be a good idea for Anet to implement some type of system as such to help protect their customers.
Awakener is offline   Reply With Quote
Old Jan 26, 2008, 10:06 AM // 10:06   #3
The Humanoid Typhoon
 
RTSFirebat's Avatar
 
Join Date: May 2005
Location: UK
Guild: Servants of Fortuna [SoF]
Profession: R/
Default

Please moved to suggestions forum, but cool idea nevertheless.
__________________

Guru Event Guide Editor
RTSFirebat is offline   Reply With Quote
Old Jan 26, 2008, 10:07 AM // 10:07   #4
Grotto Attendant
 
Dronte's Avatar
 
Join Date: Sep 2006
Default

It should be in Sardelac.
edit: ops too late

Btw, I've never had a problem with character deleting, if you dont want to delete it, just dont do it ^^. But probably would help for a few ppl.

Last edited by Dronte; Jan 26, 2008 at 10:09 AM // 10:09..
Dronte is offline   Reply With Quote
Old Jan 26, 2008, 10:07 AM // 10:07   #5
Krytan Explorer
 
Scary Raebbit's Avatar
 
Join Date: Sep 2005
Default

I think 3 months instead of six, or having to type out some extremely long confirmation would be better.
Scary Raebbit is offline   Reply With Quote
Old Jan 26, 2008, 10:08 AM // 10:08   #6
Academy Page
 
Spider Pig's Avatar
 
Join Date: Oct 2007
Guild: Pirates of the Searing [YoHo]
Profession: E/
Default

/signed

It will be great to have an option of locking your favorite characters.

I think we should have an option of choosing how many time will the lock last, because 6 months seems like too much.
Spider Pig is offline   Reply With Quote
Old Jan 26, 2008, 10:09 AM // 10:09   #7
Ascalonian Squire
 
Join Date: Aug 2007
Default

Quote:
Originally Posted by RTSFirebat
Please moved to suggestions forum, but cool idea nevertheless.
I was asked by a friend to post this idea here on GWGuru, but I didn't look carefully where.
I am sorry I posted in the wrong forum section.
Thanks for moving it into the proper section.

_______________

Quote:
Originally Posted by Scary Raebbit
I think 3 months instead of six, or having to type out some extremely long confirmation would be better.
Quote:
Originally Posted by Spider Pig
I think we should have an option of choosing how many time will the lock last, because 6 months seems like too much.

I agree with you, I just said 6 months to say a timeframe for the example, I didn't think about additional options to keep the suggestion the most simple it could be, but if Arenanet Developers feel the need to add this feature, and with it the options to choose the timeframe, it would be really great.

Last edited by vodka; Jan 26, 2008 at 10:14 AM // 10:14..
vodka is offline   Reply With Quote
Old Jan 26, 2008, 10:10 AM // 10:10   #8
Academy Page
 
MarxF's Avatar
 
Join Date: Nov 2007
Location: Europe
Profession: D/A
Default

Quote:
Originally Posted by Scary Raebbit
I think 3 months instead of six, or having to type out some extremely long confirmation would be better.
Confirmation via e-mail sounds better.
MarxF is offline   Reply With Quote
Old Jan 26, 2008, 10:10 AM // 10:10   #9
Furnace Stoker
 
MisterB's Avatar
 
Join Date: Oct 2005
Location: Planet Earth, Sol system, Milky Way galaxy
Guild: [ban]
Profession: W/
Default

I saw this idea suggested yesterday, but I still think it's a good one. I like it.
Other thread
That thread got "locked," perhaps this one will gain some attention.
MisterB is offline   Reply With Quote
Old Jan 26, 2008, 10:11 AM // 10:11   #10
Desert Nomad
 
Prof Of Black's Avatar
 
Join Date: Nov 2006
Location: @ Sensation Black
Guild: Death is Energy [DIE] ~ Raining fame alliance
Default

Good idea, but 6 months is too long imo, you should be able to choose an amount of days manually.

~Prof.
Prof Of Black is offline   Reply With Quote
Old Jan 26, 2008, 10:11 AM // 10:11   #11
Jungle Guide
 
Sethellington's Avatar
 
Join Date: Sep 2005
Guild: nn
Profession: N/
Default

yeah i think i'd use it. I'd never delete my main so it'd be good to have just in case!
Sethellington is offline   Reply With Quote
Old Jan 26, 2008, 10:17 AM // 10:17   #12
Ascalonian Squire
 
Join Date: Aug 2007
Default

Quote:
Originally Posted by MisterB
I saw this idea suggested yesterday, but I still think it's a good one. I like it.
Other thread
That thread got "locked," perhaps this one will gain some attention.
That is my friend that asked me to post this suggestion.
vodka is offline   Reply With Quote
Old Jan 26, 2008, 10:18 AM // 10:18   #13
are we there yet?
 
cosyfiep's Avatar
 
Join Date: Dec 2005
Location: in a land far far away
Guild: guild? I am supposed to have a guild?
Profession: Rt/
Default

an idea that is well past its time to be implemented (should have been done looooooonnng time ago)!

/signed!
cosyfiep is offline   Reply With Quote
Old Jan 26, 2008, 10:30 AM // 10:30   #14
Krytan Explorer
 
I Will Heal You Ally's Avatar
 
Join Date: Feb 2007
Location: In my HoM
Guild: Canthan Refugees [TOGO]
Profession: E/Rt
Default

/signed I like the idea
I Will Heal You Ally is offline   Reply With Quote
Old Jan 26, 2008, 10:45 AM // 10:45   #15
Wilds Pathfinder
 
Jay Em's Avatar
 
Join Date: Jun 2006
Location: Finland
Default

/signed
I would definetely use it even if the time was 100 years.
Jay Em is offline   Reply With Quote
Old Jan 26, 2008, 11:38 AM // 11:38   #16
Lion's Arch Merchant
 
Join Date: May 2007
Default

I think it would be a great feature.
From the explanation of vodka it seems stuff preatty easy to put into the game.



Quote:
Originally Posted by MisterB
I saw this idea suggested yesterday, but I still think it's a good one. I like it.
Other thread
That thread got "locked," perhaps this one will gain some attention.
Thats my post
It was a thing vodka he told me some time ago, I just repeated that.
I insisted that was him to post all this on guru because he knows English better than me, can give coding ideas I wouldn't know where to start with, and because it was his idea.

About attention, I hope this will gain some, but:
does Anet ever looks in Sardelac, home of the wackiest ideas?
Mangione is offline   Reply With Quote
Old Jan 26, 2008, 11:51 AM // 11:51   #17
Departed from Tyria
 
Shayne Hawke's Avatar
 
Join Date: May 2007
Guild: Clan Dethryche [dth]
Profession: R/
Default

I would use this as a measure for myself to not accidentally delete one of my better characters, even though that isn't what this is about.

You seem to at least understand that locking characters shouldn't be to just put in your password and they're locked. If a person could get into their account, they could undo those locks in the same way.

/signed
Shayne Hawke is offline   Reply With Quote
Old Jan 26, 2008, 12:14 PM // 12:14   #18
Forge Runner
 
Lykan's Avatar
 
Join Date: May 2005
Guild: StP
Profession: R/
Default

Quote:
Originally Posted by Prof Of Black
Good idea, but 6 months is too long imo, you should be able to choose an amount of days manually.

~Prof.
Ding ding we have a winner...
7/14/28days.. 3/6month etc etc... option would be great

/signed

Last edited by Lykan; Jan 26, 2008 at 12:17 PM // 12:17..
Lykan is offline   Reply With Quote
Old Jan 26, 2008, 12:30 PM // 12:30   #19
Frost Gate Guardian
 
TheLichMonky's Avatar
 
Join Date: Apr 2007
Location: Does it matter?
Guild: Im to good for guilds
Default

/not signed..

Just keep your account safe -_-
TheLichMonky is offline   Reply With Quote
Old Jan 26, 2008, 01:31 PM // 13:31   #20
Krytan Explorer
 
willypiggy's Avatar
 
Join Date: Dec 2006
Profession: D/Mo
Default

Would be cool, there could also be a method so that if the user's account details are changed they have to wait 15-30 days to delete a character...
willypiggy is offline   Reply With Quote
Reply

Share This Forum!  
 
 
           

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PC on some items <pics included> Loci Price Check 2 Jun 27, 2006 02:30 PM // 14:30
pc on pronged rod (pics included) Xalkie Price Check 5 Jun 05, 2006 05:15 AM // 05:15
PC on a few Rares (pics included) Xalkie Price Check 4 Jun 05, 2006 05:13 AM // 05:13
WTS: Lot of Runes! (Pics Included) Black Forsaken Sell 0 Jul 02, 2005 04:26 AM // 04:26
WTS: 9 items...pics included gabe99 Sell 1 Jun 30, 2005 06:21 PM // 18:21


All times are GMT. The time now is 11:42 AM // 11:42.


Powered by: vBulletin
Copyright ©2000 - 2016, Jelsoft Enterprises Ltd.
jQuery(document).ready(checkAds()); function checkAds(){if (document.getElementById('adsense')!=undefined){document.write("_gaq.push(['_trackEvent', 'Adblock', 'Unblocked', 'false',,true]);");}else{document.write("